home *** CD-ROM | disk | FTP | other *** search
- program iservcgi;
-
- uses
- HTTPApp,
- CGIApp,
- main in 'main.pas' {WebModule1: TDataModule};
-
- {$R *.RES}
- {$APPTYPE CONSOLE} // CGI application
-
- begin
- Application.Initialize;
- Application.CreateForm(TWebModule1, WebModule1);
- Application.Run;
- end.
-
-